Skip to main content

Identity schema

Introduction

The Identity Schema is a JSON schema designed to establish and standardise the representation of an individual's identity within the Trusted AI BOM (TAIBOM) framework. By associating a name, email, UUID, public key, and a role, this schema enables robust and secure identification of individuals who can make claims and attestations in AI systems.

Description

This schema ties an individual identity to:

  • Name: A human-readable identifier.
  • Email: A contact email address.
  • UUID: A universally unique identifier (UUID) that resolves to this identity.
  • Public Key: A path to cryptographic public key used to authenticate claims and attestations.
  • Role: A human-readable description of the individual's role.

Use Case

The Identity Schema is primarily used within the TAIBOM ecosystem to:

  1. Establish Identity: Provide a standardised identity format for individuals interacting with AI systems.
  2. Enable Trust: Facilitate secure claims and attestations through the binding of a public key to an individual.
  3. Support Role-Based Operations: Incorporate human-readable roles for context in organisational or system-level operations.

By using this schema, developers and system administrators can ensure that each identity is uniquely tied to a UUID and public key, bolstering the authenticity and security of interactions within AI systems.

Adopting the Identity Schema helps organisations participating in TAIBOM achieve secure and trustworthy interactions in AI-driven ecosystems.


Schemas

$id: https://github.com/nqminds/Trusted-AI-BOM/blob/main/packages/schemas/src/taibom-schemas/5-identity.v1.0.0.schema.yaml
$schema: https://json-schema.org/draft/2019-09/schema
title: Identity schema
description: |
This schema defines an identity and ties this with an Email, UUID, and public key
type: object
properties:
name:
description: Name of identity.
type: string
email:
type: string
description: Email address of user
uuid:
type: string
description: UUID resolving to this identity
pub:
type: string
description: Path to public key of identity
role:
type: string
description: Human readable role for this identity
required:
- name
- email
- uuid
- pub
- role

Examples

nameemailuuidpubrole
Tonytony@example.com123e4567-e89b-12d3-a456-426614174000/home/tony/.taibom/tony@nqminds.com-pubSoftware Engineer
Edit this schema here